home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 001 / prcmfixs.arc / PRCMBBS.CMD < prev    next >
OS/2 REXX Batch file  |  1987-07-19  |  1KB  |  20 lines

  1. ;**********************************************************************
  2. ;*                                                                    *
  3. ;*                 Sample command file for this BBS                   *
  4. ;*                                                                    *
  5. ;**********************************************************************
  6.  
  7. EMULATE ANSI                ;* Use ANSI-BBS emulation for ANSI graphics      *
  8. IF NOT LINKED
  9.    DIAL "99"                ;* Call dialing directory entry number 99        *
  10. ENDIF
  11. TRANSMIT "!"                ;* Transmit a Carriage return                    *
  12. PAUSE "1"                   ;* and wait a second...                          *
  13. WAITFOR ""                 ;* Wait for first name prompt...                 *
  14. TRANSMIT "John!"            ;* Send my first name                            *
  15. WAITFOR "me?"               ;* Wait for last name prompt...                  *
  16. TRANSMIT "Doe!"             ;* Send my last name                             *
  17. WAITFOR "rect?"             ;* Wait for verification prompt...               *
  18. TRANSMIT "Y"                ;* Send a yup                                    *
  19. ALARM                       ;* Sound alarm to let you know logon is complete *
  20.